home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_07 / 9n07094f < prev    next >
Encoding:
Text File  |  1991-05-26  |  245 b   |  13 lines

  1.  
  2.     Display     *display;
  3.     Window      window;
  4.     long        event_mask;
  5.  
  6.     event_mask = ButtonPressMask | ExposureMask |
  7.               KeyPressmask;
  8.  
  9.     XSelectInput( display,
  10.             window,
  11.             event_mask );
  12.  
  13.